home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 015a / tutorii.zip / BREM.DAT < prev    next >
Text File  |  1991-11-29  |  471b  |  17 lines

  1. Explanation of the REM command. It is 
  2. a BATCH and CONFIG.SYS command.
  3.  
  4. This command is designed to let you put 
  5. remarks into any batch file. This will 
  6. not be executed and they are only there 
  7. for your or the user's convenience. They 
  8. can be used to put explanations into the 
  9. Batch file.
  10.  
  11. Example: 
  12.    This short program will only clear
  13.    the screen. But it uses the REM command:
  14.        echo off
  15.        REM this will only clear the screen.
  16.        cls
  17.